` area color would be the same as the input `#d4d5b2`, and the image behind would be completely transparent. With the brightness set to `150%` as in this example, the colors in the image behind are getting hidden by the brightness of the `
` element.
### Applying brightness using the filter property
diff --git a/files/en-us/web/css/transition-behavior/index.md b/files/en-us/web/css/transition-behavior/index.md
index 19d664a793ee8c7..cc7235d14222443 100644
--- a/files/en-us/web/css/transition-behavior/index.md
+++ b/files/en-us/web/css/transition-behavior/index.md
@@ -62,7 +62,7 @@ The `transition-behavior` value can be included as part of a shorthand {{cssxref
}
```
-In the above snippet we include the `transition` property twice. The first instance does not include the `allow-discrete` value — this provides cross-browser support, ensuring the card's other properties still transition in browsers that don't support `transition-behavior.`
+In the above snippet we include the `transition` property twice. The first instance does not include the `allow-discrete` value — this provides cross-browser support, ensuring the card's other properties still transition in browsers that don't support `transition-behavior`.
### Discrete animation behavior
diff --git a/files/en-us/web/performance/guides/navigation_and_resource_timings/index.md b/files/en-us/web/performance/guides/navigation_and_resource_timings/index.md
index 82da3fec3670cb1..8122660dd112bba 100644
--- a/files/en-us/web/performance/guides/navigation_and_resource_timings/index.md
+++ b/files/en-us/web/performance/guides/navigation_and_resource_timings/index.md
@@ -272,7 +272,7 @@ The order is:
When the
load
event was sent for the current document. If this event has not yet been
- sent, it returns
0.
+ sent, it returns
0
.
@@ -284,7 +284,7 @@ The order is:
load
event handler terminated, that is when the load event is completed. If
this event has not yet been sent, or is not yet completed, it returns
- 0.
+ 0
.
diff --git a/files/en-us/webassembly/guides/rust_to_wasm/index.md b/files/en-us/webassembly/guides/rust_to_wasm/index.md
index e8fa2550abdfcd6..e564c31ab4edfb5 100644
--- a/files/en-us/webassembly/guides/rust_to_wasm/index.md
+++ b/files/en-us/webassembly/guides/rust_to_wasm/index.md
@@ -148,7 +148,7 @@ Once again, we see the `#[wasm_bindgen]` attribute. In this case, it's not modif
This function is named `greet`, and takes one argument, a string (written `&str`), `name`. It then calls the `alert` function we asked for in the `extern` block above. It passes a call to the `format!` macro, which lets us concatenate strings.
-The `format!` macro takes two arguments in this case: a format string, and a variable to put in it. The format string is the `"Hello, {}!"` bit. It contains `{}`s, where variables will be interpolated. The variable we're passing is `name`, the argument to the function, so if we call `greet("Steve")` we should see `"Hello, Steve!".`
+The `format!` macro takes two arguments in this case: a format string, and a variable to put in it. The format string is the `"Hello, {}!"` bit. It contains `{}`s, where variables will be interpolated. The variable we're passing is `name`, the argument to the function, so if we call `greet("Steve")` we should see `"Hello, Steve!"`.
This is passed to `alert()`, so when we call this function we will see an alert box with "Hello, Steve!" in it.